home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Trading on the Edge
/
Trading On The Edge - CD-ROM Toolkit (Wayzata Technology)(2031)(1994).bin
/
pc
/
pc_files
/
venddemo
/
finance
/
xchk
/
changes.bat
< prev
next >
Wrap
DOS Batch File
|
1990-12-15
|
430b
|
16 lines
@ECHO OFF
CLS
ECHO This batch file will print the CHANGES.!!! file
ECHO to printer port LPT1:
ECHO Please check that the printer is on !
ECHO Press any key to begin (Ctrl-Break to exit)....
PAUSE
IF NOT EXIST CHANGES.!!! GOTO :NOTFOUND
ECHO Now printing CHANGES.!!!...
COPY CHANGES.!!! LPT1:
ECHO CHANGES.!!! printed...
GOTO :END
:NOTFOUND
ECHO The file CHANGES.!!! was not found. Please check your disk....
:END